home *** CD-ROM | disk | FTP | other *** search
/ Workplace Effectiveness:…ecision-Making Strategies / Workplace Effectiveness: Decision-Making Strategies.iso / pc / Files / Eval.dxr / 00003_Navigation handlers.ls < prev    next >
Encoding:
Text File  |  1998-12-16  |  520 b   |  27 lines

  1. global gMasterData, gSection, gEvaluationData
  2.  
  3. on goVideo
  4.   go("video")
  5.   set gSection to #video
  6.   if not activationOn(gMasterData, #video) then
  7.     activate(gMasterData, #video)
  8.   end if
  9. end
  10.  
  11. on goIntro
  12.   go("intro")
  13.   set gSection to #intro
  14. end
  15.  
  16. on goEvaluate
  17.   if voidp(gEvaluationData) then
  18.     set gEvaluationData to [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]
  19.   end if
  20.   go("eval1")
  21.   set gSection to #eval1
  22.   audio1xOnly(gMasterData, "204")
  23.   if not activationOn(gMasterData) then
  24.     activate(gMasterData)
  25.   end if
  26. end
  27.